home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cm100exe.zip / CM100EXE.EXE / SAMPLES / C / README.TXT < prev    next >
Text File  |  1991-11-16  |  2KB  |  67 lines

  1.      MICROSOFT C OPTIMIZING COMPILER SAMPLE
  2.  
  3.      This sample demonstrates how to use CMAKE to maintain a DOS
  4.      application that is built with the programs: CL, LIB, and LINK.
  5.  
  6.  
  7.      TO RUN CMAKE:
  8.  
  9.         Execute CMAKE by entering the command
  10.  
  11.         cmake
  12.  
  13.         No parameters are required.
  14.  
  15.  
  16.      NOTE THE FOLLOWING:
  17.  
  18.      1. The commands (and comments) in the make file, "makefile".
  19.         CMAKE will deduce all dependencies from these commands.
  20.  
  21.         See: The Make File for CMAKE
  22.                CL
  23.                * When is a CL Command Required?
  24.                LIB
  25.                * When is a LIB Command Required?
  26.                LINK
  27.                * When is a LINK Command Required?
  28.              in the help file.
  29.  
  30.      2. The format of the LIB response file, "message.lrf".  CMAKE
  31.         requires that a response file (of a particular form) be used
  32.         with the LIB command.
  33.  
  34.         See: The Make File for CMAKE
  35.                LIB
  36.                * The LIB Command Line
  37.              in the help file.
  38.  
  39.      3. The format of the LINK response file, "greeting.lnk".  CMAKE
  40.         requires that a response file (of a particular form) be used
  41.         with the LINK command.
  42.  
  43.         See: The Make File for CMAKE
  44.                LINK
  45.                * The LINK Command Line
  46.              in the help file.
  47.  
  48.      4. The use and placement of the comment
  49.  
  50.         /* CMAKE - INCLUDE END */
  51.  
  52.         in the files, "hello.c", "world.c", and "greeting.c".
  53.  
  54.         In these files, this comment is placed after all #include
  55.         statements.  Although this comment is not required in C-source
  56.         files, it serves as an end-of-file mark for CMAKE, and thus
  57.         prevents CMAKE from searching the entire source file for
  58.         #include statements.
  59.  
  60.         See: Optimizing Performance
  61.              * Use the End-of-Includes Comment in Your Source Files
  62.              The Make File for CMAKE
  63.                CL
  64.                * Switches for CL
  65.                * How CMAKE Processes a C-Source File
  66.              in the help file.
  67.